第一种 threading.Thread
1 | import threading |
第二种 concurrent.futures import ThreadPoolExecutor
1 | import requests |
第三种 from multiprocessing.dummy import Pool as ThreadPool
1 | from multiprocessing.dummy import Pool as ThreadPool |
速度可自行测试 后两种相对简单
做一个有趣的产品,取悦自己
第一种 threading.Thread
1 | import threading |
第二种 concurrent.futures import ThreadPoolExecutor
1 | import requests |
第三种 from multiprocessing.dummy import Pool as ThreadPool
1 | from multiprocessing.dummy import Pool as ThreadPool |
速度可自行测试 后两种相对简单
热评话题